home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / os2 / memsz313.zip / SOURCE.ZIP / CONFIG.H < prev    next >
Text File  |  1996-02-09  |  1KB  |  52 lines

  1. /******************************************************************* CONFIG.H
  2.  *                                                                          *
  3.  *                     Configure Dialog definitions                         *
  4.  *                                                                          *
  5.  ****************************************************************************/
  6.  
  7. #ifndef CONFIG_H
  8. #define CONFIG_H
  9.  
  10. #include "Profile.h"
  11.  
  12. enum {
  13.    CORNER_BL,
  14.    CORNER_BR,
  15.    CORNER_TL,
  16.    CORNER_TR
  17. } ;
  18.  
  19. enum { 
  20.    SHOWK_NEVER, 
  21.    SHOWK_ABOVE512, 
  22.    SHOWK_ALWAYS 
  23. } ;
  24.  
  25. typedef struct {
  26.  
  27.   BOOL   HideControls ;
  28.   BOOL   Float ;
  29.   BOOL   Animate ;
  30.   BOOL   ShowFileSystemNames ;
  31.   BOOL   ShowDiskLabels ;
  32.   BOOL   ShowSeconds ;
  33.   USHORT ShowK ;
  34.   ULONG  MonitorPriority ;
  35.   ULONG  TimerInterval ;
  36.   USHORT AnchorCorner ;
  37.  
  38.   USHORT ItemCount ;
  39.   BOOL   ItemFlags [ ITEM_BASE_COUNT + MAX_DRIVES ] ;
  40.   char   DefaultLabels [ ITEM_BASE_COUNT + MAX_DRIVES ] [ 80 ] ;
  41.   char   CurrentLabels [ ITEM_BASE_COUNT + MAX_DRIVES ] [ 80 ] ;
  42.  
  43.   // State information.
  44.   int    Ready ;
  45.   int    MostRecentSelection ;
  46.  
  47. } CONFIG_PARMS, *PCONFIG_PARMS ;
  48.  
  49. extern FNWP ConfigureProcessor ;
  50.  
  51. #endif
  52.